home *** CD-ROM | disk | FTP | other *** search
/ .net (Turkey) 1998 March / .net Internet Dergisi - CD 5.iso / pc / NETCD41.dir / 00038_Script_Separator & Platform Global < prev    next >
Text File  |  1997-12-11  |  400b  |  20 lines

  1. global gPathSep, gPlatform, gCDDrive, gURL, gBrowserLoc
  2.  
  3.  
  4.  
  5. on StartMovie
  6.   
  7.   --  Sets up path separator for macs/PCs
  8.   if the machinetype = 256 then 
  9.     set gPathSep= "\" 
  10.   else
  11.     set gPathSep = ":"
  12.   end if
  13.   
  14.   --  sets win 3.1/95/ppc/mac glabal + what's the CDDrive?
  15.   set gCDDrive = the moviepath
  16.   set gPlatform to the platform 
  17.   set gBrowserLoc = ""
  18.   
  19. end StartMovie
  20.